home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 June / ccd0605.iso / Software / Shareware / Comunicatii / bandman / bwmsetup.exe / {app} / bwm.exe / 0 / RCDATA / TEDITRULEFORM / TEDITRULEFORM.txt < prev   
Text File  |  2005-05-01  |  14KB  |  589 lines

  1. object EditRuleForm: TEditRuleForm
  2.   Left = 313
  3.   Top = 265
  4.   BorderStyle = bsDialog
  5.   BorderWidth = 5
  6.   Caption = 'EditRuleForm'
  7.   ClientHeight = 383
  8.   ClientWidth = 352
  9.   Color = clBtnFace
  10.   Font.Charset = DEFAULT_CHARSET
  11.   Font.Color = clWindowText
  12.   Font.Height = -11
  13.   Font.Name = 'MS Shell Dlg'
  14.   Font.Style = []
  15.   OldCreateOrder = False
  16.   Position = poOwnerFormCenter
  17.   OnCreate = FormCreate
  18.   OnDestroy = FormDestroy
  19.   OnShow = FormShow
  20.   PixelsPerInch = 96
  21.   TextHeight = 13
  22.   object Pages: TPageControl
  23.     Left = 0
  24.     Top = 0
  25.     Width = 352
  26.     Height = 344
  27.     ActivePage = tsGeneral
  28.     Align = alTop
  29.     TabOrder = 0
  30.     object tsGeneral: TTabSheet
  31.       Caption = 'General'
  32.       object ImageGenIcon: TImage
  33.         Left = 13
  34.         Top = 18
  35.         Width = 32
  36.         Height = 32
  37.         AutoSize = True
  38.         Picture.Data = {<image000.ico>}
  39.       end
  40.       object leRuleName: TLabeledEdit
  41.         Left = 59
  42.         Top = 30
  43.         Width = 272
  44.         Height = 21
  45.         EditLabel.Width = 53
  46.         EditLabel.Height = 13
  47.         EditLabel.Caption = 'Rule Name'
  48.         TabOrder = 0
  49.       end
  50.       object rgFilterDirection: TRadioGroup
  51.         Left = 8
  52.         Top = 59
  53.         Width = 325
  54.         Height = 48
  55.         Caption = 'Direction'
  56.         Columns = 3
  57.         ItemIndex = 2
  58.         Items.Strings = (
  59.           'Incoming'
  60.           'Outgoing'
  61.           'Either')
  62.         TabOrder = 1
  63.       end
  64.       object gbInterface: TGroupBox
  65.         Left = 8
  66.         Top = 251
  67.         Width = 326
  68.         Height = 57
  69.         Caption = 'Apply Rule on Interface'
  70.         TabOrder = 3
  71.         object cmbApplyOn: TComboBox
  72.           Left = 16
  73.           Top = 24
  74.           Width = 293
  75.           Height = 22
  76.           Style = csOwnerDrawFixed
  77.           ItemHeight = 16
  78.           ItemIndex = 0
  79.           TabOrder = 0
  80.           Text = 'Any'
  81.           OnDrawItem = cmbApplyOnDrawItem
  82.           Items.Strings = (
  83.             'Any')
  84.         end
  85.       end
  86.       object gbProtocol: TGroupBox
  87.         Left = 8
  88.         Top = 192
  89.         Width = 325
  90.         Height = 54
  91.         Caption = 'Protocol'
  92.         TabOrder = 2
  93.         object cmbProtocols: TComboBox
  94.           Left = 16
  95.           Top = 20
  96.           Width = 293
  97.           Height = 21
  98.           Style = csDropDownList
  99.           ItemHeight = 13
  100.           TabOrder = 0
  101.           OnChange = cmbProtocolsChange
  102.           Items.Strings = (
  103.             'Any protocol'
  104.             'TCP'
  105.             'UDP'
  106.             'TCP or UDP')
  107.         end
  108.       end
  109.       object rgTransferRate: TGroupBox
  110.         Left = 8
  111.         Top = 113
  112.         Width = 325
  113.         Height = 75
  114.         Caption = 'Transfer Rate Limit'
  115.         TabOrder = 4
  116.         object cmbRate: TComboBox
  117.           Left = 16
  118.           Top = 44
  119.           Width = 293
  120.           Height = 21
  121.           DropDownCount = 12
  122.           ItemHeight = 13
  123.           TabOrder = 0
  124.         end
  125.         object rbBytes: TRadioButton
  126.           Left = 105
  127.           Top = 18
  128.           Width = 66
  129.           Height = 17
  130.           Caption = 'Bytes/sec'
  131.           Checked = True
  132.           TabOrder = 1
  133.           TabStop = True
  134.           OnClick = rbBytesClick
  135.         end
  136.         object rbBits: TRadioButton
  137.           Left = 187
  138.           Top = 18
  139.           Width = 57
  140.           Height = 17
  141.           Caption = 'Bit/sec'
  142.           TabOrder = 2
  143.           OnClick = rbBitsClick
  144.         end
  145.         object rbQuota: TRadioButton
  146.           Left = 251
  147.           Top = 18
  148.           Width = 57
  149.           Height = 17
  150.           Caption = 'Quota'
  151.           TabOrder = 3
  152.           OnClick = rbQuotaClick
  153.         end
  154.       end
  155.     end
  156.     object tsSource: TTabSheet
  157.       Caption = 'Source'
  158.       ImageIndex = 1
  159.       object gbSourceIpAddr: TGroupBox
  160.         Left = 8
  161.         Top = 16
  162.         Width = 329
  163.         Height = 153
  164.         Caption = 'Source Address'
  165.         TabOrder = 0
  166.         object rbSrcMyComputer: TRadioButton
  167.           Left = 11
  168.           Top = 24
  169.           Width = 113
  170.           Height = 17
  171.           Caption = 'Local host'
  172.           Checked = True
  173.           TabOrder = 0
  174.           TabStop = True
  175.           OnClick = SourceIpChanged
  176.         end
  177.         object rbSrcMacAddress: TRadioButton
  178.           Left = 11
  179.           Top = 48
  180.           Width = 113
  181.           Height = 17
  182.           Caption = 'MAC Address'
  183.           TabOrder = 1
  184.           OnClick = SourceIpChanged
  185.         end
  186.         object rbSrcIpAddr: TRadioButton
  187.           Left = 11
  188.           Top = 72
  189.           Width = 113
  190.           Height = 17
  191.           Caption = 'Single IP Address'
  192.           TabOrder = 2
  193.           OnClick = SourceIpChanged
  194.         end
  195.         object rbSrcIpRange: TRadioButton
  196.           Left = 11
  197.           Top = 96
  198.           Width = 113
  199.           Height = 17
  200.           Caption = 'Whole IP Range'
  201.           TabOrder = 3
  202.           OnClick = SourceIpChanged
  203.         end
  204.         object rbSrcIpAny: TRadioButton
  205.           Left = 11
  206.           Top = 120
  207.           Width = 113
  208.           Height = 17
  209.           Caption = 'Any IP Address'
  210.           TabOrder = 4
  211.           OnClick = SourceIpChanged
  212.         end
  213.       end
  214.       object gbSourceIpPort: TGroupBox
  215.         Left = 8
  216.         Top = 176
  217.         Width = 329
  218.         Height = 129
  219.         Caption = 'Source Port'
  220.         TabOrder = 1
  221.         object rbSrcPortAny: TRadioButton
  222.           Left = 11
  223.           Top = 25
  224.           Width = 49
  225.           Height = 17
  226.           Caption = 'Any'
  227.           Checked = True
  228.           TabOrder = 0
  229.           TabStop = True
  230.           OnClick = SourcePortChanged
  231.         end
  232.         object rbSrcPortSinglePort: TRadioButton
  233.           Left = 11
  234.           Top = 50
  235.           Width = 73
  236.           Height = 17
  237.           Caption = 'Single port'
  238.           TabOrder = 1
  239.           OnClick = SourcePortChanged
  240.         end
  241.         object rbSrcPortRange: TRadioButton
  242.           Left = 11
  243.           Top = 75
  244.           Width = 73
  245.           Height = 17
  246.           Caption = 'Port Range'
  247.           TabOrder = 2
  248.           OnClick = SourcePortChanged
  249.         end
  250.         object rbSrcPortList: TRadioButton
  251.           Left = 11
  252.           Top = 100
  253.           Width = 73
  254.           Height = 17
  255.           Caption = 'Port List'
  256.           TabOrder = 3
  257.           OnClick = SourcePortChanged
  258.         end
  259.         object SrcIpPortNotebook: TNotebook
  260.           Left = 185
  261.           Top = 19
  262.           Width = 129
  263.           Height = 99
  264.           PageIndex = 3
  265.           TabOrder = 4
  266.           object TPage
  267.             Left = 0
  268.             Top = 0
  269.             Caption = 'SINGLE'
  270.             object edSrcIpSinglePort: TEdit
  271.               Left = 4
  272.               Top = 29
  273.               Width = 43
  274.               Height = 21
  275.               TabOrder = 0
  276.             end
  277.           end
  278.           object TPage
  279.             Left = 0
  280.             Top = 0
  281.             Caption = 'RANGE'
  282.             object leSrcPortFrom: TLabeledEdit
  283.               Left = 6
  284.               Top = 54
  285.               Width = 43
  286.               Height = 21
  287.               EditLabel.Width = 23
  288.               EditLabel.Height = 13
  289.               EditLabel.Caption = 'From'
  290.               TabOrder = 0
  291.             end
  292.             object leSrcPortTo: TLabeledEdit
  293.               Left = 61
  294.               Top = 54
  295.               Width = 44
  296.               Height = 21
  297.               EditLabel.Width = 13
  298.               EditLabel.Height = 13
  299.               EditLabel.Caption = 'To'
  300.               TabOrder = 1
  301.             end
  302.           end
  303.           object TPage
  304.             Left = 0
  305.             Top = 0
  306.             Caption = 'LIST'
  307.             object lbSrcPortList: TListBox
  308.               Left = 2
  309.               Top = 1
  310.               Width = 123
  311.               Height = 67
  312.               ItemHeight = 13
  313.               MultiSelect = True
  314.               TabOrder = 0
  315.             end
  316.             object btnSrcIpAddPort: TButton
  317.               Left = 4
  318.               Top = 73
  319.               Width = 54
  320.               Height = 23
  321.               Caption = 'Add'
  322.               TabOrder = 1
  323.               OnClick = btnSrcIpAddPortClick
  324.             end
  325.             object btnSrcIpDelPort: TButton
  326.               Left = 67
  327.               Top = 73
  328.               Width = 56
  329.               Height = 23
  330.               Caption = 'Remove'
  331.               TabOrder = 2
  332.               OnClick = btnSrcIpDelPortClick
  333.             end
  334.           end
  335.           object TPage
  336.             Left = 0
  337.             Top = 0
  338.             Caption = 'EMPTY'
  339.           end
  340.         end
  341.       end
  342.     end
  343.     object tsDestination: TTabSheet
  344.       Caption = 'Destination'
  345.       ImageIndex = 2
  346.       object gbDestinationIpAddr: TGroupBox
  347.         Left = 8
  348.         Top = 16
  349.         Width = 329
  350.         Height = 153
  351.         Caption = 'Destination Address'
  352.         TabOrder = 0
  353.         object rbDstMyComputer: TRadioButton
  354.           Left = 11
  355.           Top = 24
  356.           Width = 113
  357.           Height = 17
  358.           Caption = 'Local host'
  359.           Checked = True
  360.           TabOrder = 0
  361.           TabStop = True
  362.           OnClick = DestinationIpChanged
  363.         end
  364.         object rbDstMacAddress: TRadioButton
  365.           Left = 11
  366.           Top = 48
  367.           Width = 113
  368.           Height = 17
  369.           Caption = 'MAC Address'
  370.           TabOrder = 1
  371.           OnClick = DestinationIpChanged
  372.         end
  373.         object rbDstIpAddr: TRadioButton
  374.           Left = 11
  375.           Top = 72
  376.           Width = 113
  377.           Height = 17
  378.           Caption = 'Single IP Address'
  379.           TabOrder = 2
  380.           OnClick = DestinationIpChanged
  381.         end
  382.         object rbDstIpRange: TRadioButton
  383.           Left = 11
  384.           Top = 96
  385.           Width = 113
  386.           Height = 17
  387.           Caption = 'Whole IP Range'
  388.           TabOrder = 3
  389.           OnClick = DestinationIpChanged
  390.         end
  391.         object rbDstIpAny: TRadioButton
  392.           Left = 11
  393.           Top = 120
  394.           Width = 113
  395.           Height = 17
  396.           Caption = 'Any IP Address'
  397.           TabOrder = 4
  398.           OnClick = DestinationIpChanged
  399.         end
  400.       end
  401.       object gbDestinationIpPort: TGroupBox
  402.         Left = 8
  403.         Top = 176
  404.         Width = 329
  405.         Height = 129
  406.         Caption = 'Destination Port'
  407.         TabOrder = 1
  408.         object rbDstPortAny: TRadioButton
  409.           Left = 11
  410.           Top = 25
  411.           Width = 49
  412.           Height = 17
  413.           Caption = 'Any'
  414.           Checked = True
  415.           TabOrder = 0
  416.           TabStop = True
  417.           OnClick = DestinationPortChanged
  418.         end
  419.         object rbDstPortSinglePort: TRadioButton
  420.           Left = 11
  421.           Top = 50
  422.           Width = 73
  423.           Height = 17
  424.           Caption = 'Single port'
  425.           TabOrder = 1
  426.           OnClick = DestinationPortChanged
  427.         end
  428.         object rbDstPortRange: TRadioButton
  429.           Left = 11
  430.           Top = 75
  431.           Width = 73
  432.           Height = 17
  433.           Caption = 'Port Range'
  434.           TabOrder = 2
  435.           OnClick = DestinationPortChanged
  436.         end
  437.         object rbDstPortList: TRadioButton
  438.           Left = 11
  439.           Top = 100
  440.           Width = 73
  441.           Height = 17
  442.           Caption = 'Port List'
  443.           TabOrder = 3
  444.           OnClick = DestinationPortChanged
  445.         end
  446.         object DstIpPortNotebook: TNotebook
  447.           Left = 185
  448.           Top = 19
  449.           Width = 129
  450.           Height = 99
  451.           PageIndex = 3
  452.           TabOrder = 4
  453.           object TPage
  454.             Left = 0
  455.             Top = 0
  456.             Caption = 'SINGLE'
  457.             object edDstIpSinglePort: TEdit
  458.               Left = 4
  459.               Top = 29
  460.               Width = 43
  461.               Height = 21
  462.               TabOrder = 0
  463.             end
  464.           end
  465.           object TPage
  466.             Left = 0
  467.             Top = 0
  468.             Caption = 'RANGE'
  469.             object leDstPortFrom: TLabeledEdit
  470.               Left = 6
  471.               Top = 54
  472.               Width = 43
  473.               Height = 21
  474.               EditLabel.Width = 23
  475.               EditLabel.Height = 13
  476.               EditLabel.Caption = 'From'
  477.               TabOrder = 0
  478.             end
  479.             object leDstPortTo: TLabeledEdit
  480.               Left = 61
  481.               Top = 54
  482.               Width = 44
  483.               Height = 21
  484.               EditLabel.Width = 13
  485.               EditLabel.Height = 13
  486.               EditLabel.Caption = 'To'
  487.               TabOrder = 1
  488.             end
  489.           end
  490.           object TPage
  491.             Left = 0
  492.             Top = 0
  493.             Caption = 'LIST'
  494.             object lbDstPortList: TListBox
  495.               Left = 2
  496.               Top = 1
  497.               Width = 123
  498.               Height = 67
  499.               ItemHeight = 13
  500.               MultiSelect = True
  501.               TabOrder = 2
  502.             end
  503.             object btnDstIpAddPort: TButton
  504.               Left = 4
  505.               Top = 73
  506.               Width = 54
  507.               Height = 23
  508.               Caption = 'Add'
  509.               TabOrder = 0
  510.               OnClick = btnDstIpAddPortClick
  511.             end
  512.             object btnDstIpDelPort: TButton
  513.               Left = 67
  514.               Top = 73
  515.               Width = 56
  516.               Height = 23
  517.               Caption = 'Remove'
  518.               TabOrder = 1
  519.               OnClick = btnDstIpDelPortClick
  520.             end
  521.           end
  522.           object TPage
  523.             Left = 0
  524.             Top = 0
  525.             Caption = 'EMPTY'
  526.           end
  527.         end
  528.       end
  529.     end
  530.     object tsAdvanced: TTabSheet
  531.       Caption = 'Advanced'
  532.       ImageIndex = 3
  533.       object gbTimeTable: TGroupBox
  534.         Left = 8
  535.         Top = 13
  536.         Width = 325
  537.         Height = 89
  538.         Caption = 'Timetable'
  539.         TabOrder = 0
  540.         object cbUseTimeTable: TCheckBox
  541.           Left = 18
  542.           Top = 24
  543.           Width = 209
  544.           Height = 17
  545.           Caption = 'Use the following schedule'
  546.           TabOrder = 0
  547.         end
  548.         object cmbTimeTables: TComboBox
  549.           Left = 16
  550.           Top = 53
  551.           Width = 293
  552.           Height = 21
  553.           Style = csDropDownList
  554.           ItemHeight = 0
  555.           TabOrder = 1
  556.         end
  557.       end
  558.     end
  559.   end
  560.   object btnOk: TButton
  561.     Left = 178
  562.     Top = 355
  563.     Width = 75
  564.     Height = 25
  565.     Caption = '&OK'
  566.     ModalResult = 1
  567.     TabOrder = 1
  568.     OnClick = btnOkClick
  569.   end
  570.   object btnCancel: TButton
  571.     Left = 264
  572.     Top = 355
  573.     Width = 75
  574.     Height = 25
  575.     Cancel = True
  576.     Caption = '&Cancel'
  577.     ModalResult = 2
  578.     TabOrder = 2
  579.   end
  580.   object cbRuleActive: TCheckBox
  581.     Left = 17
  582.     Top = 356
  583.     Width = 83
  584.     Height = 17
  585.     Caption = 'Rule Active'
  586.     TabOrder = 3
  587.   end
  588. end
  589.